body {
    min-width: 290;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #595980;;   
}

#navbar {
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: darkcyan;
    color: aliceblue;
    z-index: 10;
    position: fixed;
}

#navbar header {
    float: left;
    margin-left: 50PX;
    margin-top: 30px;    
    font-size: x-large;
    font-family: monospace;
    font-weight: bold;
}

ul {    
    list-style: none;
}

#navbar ul {
    float: right;
    margin-top: 30px;
}

#navbar li {
    display: inline;
    margin-right: 50px;
    margin-left: 20px;    
}

#navbar a {
    text-decoration: none;
    color: aliceblue;
    font-size: x-large;
    font-family: monospace;    
    font-weight: bold;
}

.sombra {
    box-shadow: 20px 10px 0 rgba(0, 0, 0, 0.19),
    0 6px 6px rgba(0, 0, 0, 0.23);
}

.img-profile {
    margin-top: 100px;
    width: 150px;
    border-radius: 50%;
}

#img-nav {
    display: none;
}

#welcome-section { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    max-width: 42rem;
    padding-top: 7rem;
}

#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: cornflowerblue;
}

#contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    padding-top: 5em;
}

.social {
    display: inline-flex;
    padding-right: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 1%;
}

.icone {
    color: ivory;
}

section {
    text-align: center;
    color: white;
    font-size: 30px;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    
    .oculta-mobile {
        display: none;
    }

    #navbar a {
        font-size: large;
    }

    #navbar li {
        margin-right: 18px;
        margin-left: auto;
    }

    p { 
        font-size: 18px;
    }

    .img-profile {
        display: none;
    }

    #img-nav {
        width: 60px;
        border-radius: 50px;
        float: left;
        margin-top: 10px;
        margin-left: 10px;
        display: block;
    }

    #welcome-section {
        padding-top: 0rem;
    }

    .social {
        display: inline-flex;
        padding-right: 7%;
        padding-top: 2%;
        padding-bottom: 2%;
        padding-left: 7%;
    }

    #contact {
        position: fixed;
        bottom: 0;
        height: auto;
        left: 0;
        padding-top: 0;
        background-color: #595980;
    }

  }
